home *** CD-ROM | disk | FTP | other *** search
/ Unwrap The Magic - Holiday 2000 / Unwrap The Magic - Holiday 2000 Interactive CD by JCPenney.iso / reader / plug_ins / acroform / javascri / afstrenu.js < prev   
Text File  |  1998-11-12  |  2KB  |  57 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFStrENU.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject to the End User License
  8.     Agreement.
  9.     Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16. if (app.language == "ENU") {
  17.     IDS_LANGUAGE         = "ENU";
  18.     IDS_GREATER_THAN    = "Invalid value: must be greater than or equal to %s.";
  19.     IDS_GT_AND_LT        = "Invalid value: must be greater than or equal to %s and less than or equal to %s.";
  20.     IDS_LESS_THAN        = "Invalid value: must be less than or equal to %s.";
  21.     IDS_INVALID_MONTH    = "** Invalid **";
  22.     IDS_INVALID_VALUE    = "The value entered does not match the format of the field";
  23.     IDS_AM = "am";
  24.     IDS_PM = "pm";
  25.  
  26.     /* This string contains month info in the following format:
  27.     ** month name or abbreviation (left bracket) month number (right bracket)
  28.     ** Note that the first string with the given number will be returned by
  29.     ** AFGetMonthString (look in AForm.js)
  30.     ** Also note that the months and abbreviations should be in order of most
  31.     ** to least definitive in case an abbreviation matches part of another
  32.     ** month or abbreviation */
  33.     IDS_MONTH_INFO    =    "January[1]" +
  34.                         "February[2]" +
  35.                         "March[3]" +
  36.                         "April[4]" +
  37.                         "May[5]" +
  38.                         "June[6]" +
  39.                         "July[7]" +
  40.                         "August[8]" +
  41.                         "September[9]" +
  42.                         "October[10]" +
  43.                         "November[11]" +
  44.                         "December[12]" +
  45.                         "Sept[9]" +
  46.                         "Jan[1]" +
  47.                         "Feb[2]" +
  48.                         "Mar[3]" +
  49.                         "Apr[4]" +
  50.                         "Jun[6]" +
  51.                         "Jul[7]" +
  52.                         "Aug[8]" +
  53.                         "Sep[9]" +
  54.                         "Oct[10]" +
  55.                         "Nov[11]" +
  56.                         "Dec[12]";
  57. }